home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / misc / vinced / include / vnc / packets.h < prev    next >
C/C++ Source or Header  |  1999-04-19  |  2KB  |  53 lines

  1. #ifndef VNC_PACKETS_H
  2. #define VNC_PACKETS_H
  3. /*********************************************************
  4.  ** ViNCEd                                              **
  5.  ** a DOS - window handler                              **
  6.  **                                                     **
  7.  ** © 1991-99 THOR-Software inc.                        **
  8.  ** Version 3.60                                        **
  9.  **                                                     **
  10.  ** header file 25 Feb 1999     THOR                    **
  11.  **                                                     **
  12.  ** ViNCEd Packet List                                  **
  13.  **-----------------------------------------------------**
  14.  **                                                     **
  15.  ** all use at your own risk,etc.,etc.                  **
  16.  **                                                     **
  17.  ** Everything declared as "reserved" or                **
  18.  ** "not used" is NOT free for your use,                **
  19.  ** it will propably used in a later release.           **
  20.  ** All FREE entries are free for public                **
  21.  ** use and are, if not otherwise noticed,              **
  22.  ** initialized as ZERO                                 **
  23.  *********************************************************/
  24.  
  25. /* ViNCEd defined packets */
  26. /* For details about these packets, consult the ViNCEd guide */
  27.  
  28. #define ACTION_UNDISK_INFO              513
  29. #define ACTION_SETLINE                  2001
  30. #define ACTION_PUSHLINE                 2002
  31. #define ACTION_QUEUELINE                2003
  32. #define ACTION_EXPANDLINE               2011
  33. #define ACTION_CLEARLINE                2012
  34. #define ACTION_SENDID                   504
  35. #define ACTION_ABORT                    512
  36. #define ACTION_GET_DISK_FSSM            4201
  37.  
  38. /* Console operation modes, forgot to define... */
  39.  
  40. /* Do not filter anything, report key codes literally and immediately */
  41. #define VNC_RAW_MODE            1
  42.  
  43. /* Standard line buffering without additional features */
  44. #define VNC_WELL_DONE_MODE        0
  45.  
  46. /* Enhanced raw-mode with ViNCEd keyboard CSI sequences for more functions */
  47. #define VNC_ENGLISH_MODE        3
  48.  
  49. /* Enhanced line buffer mode with sequences for TAB, history, etc.. */
  50. #define VNC_MEDIUM_MODE            2
  51.  
  52. #endif
  53.